home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
dev
/
c
/
restracklib_0_2.lha
/
ResTrackLib
/
asl.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-31
|
761b
|
49 lines
#include <stdio.h>
#include <clib/asl_protos.h>
#ifdef REGARGS
# include <pragmas/asl_pragmas.h>
#endif
APTR AllocAslRequest (ULONG type,struct TagItem * ptags)
{
APTR ret;
if ( (ret = AllocAslRequest (type,ptags)) != NULL)
CHECK_ADD_RN1(RTL_ASL,RTLRT_AslRequest,type)
return (ret);
} /* AllocAslRequest */
APTR AllocAslRequestTAGS (ULONG type, ...)
{
APTR ret;
if ( (ret = AllocAslRequestTAGS (type,...)) )
CHECK_ADD_RN1(RTL_ASL,RTLRT_AslRequest,type)
return (ret);
} /* AllocAslRequestTAGS */
struct FileRequester * AllocFileRequest (ULONG type)
{
struct FileRequester * ret;
if ( (ret = AllocFileRequest (type)) )
CHECK_ADD_RN1(RTL_ASL,RTLRT_AslRequest,-)
return (ret);
} /* AllocFileRequest */